create table "OrderPrescriptionMaster"(
"OrderPrescriptionMasterId" serial not null ,
"Name" character varying not null,
"Active" BOOLEAN,
"CreatedBy" integer,
"CreatedDate" timestamp without time zone,
"ModifiedBy" integer,
"ModifiedDate" timestamp without time zone,
	CONSTRAINT "OrderPrescriptionMasterId_pkey" PRIMARY KEY ("OrderPrescriptionMasterId"),
	CONSTRAINT "FK_OrderPrescriptionMaster_CreatedBy" FOREIGN KEY ("CreatedBy")
        REFERENCES public."Account" ("AccountId") MATCH SIMPLE
        ON UPDATE NO ACTION
        ON DELETE NO ACTION,
    CONSTRAINT "FK_OrderPrescriptionMaster_ModifiedBy" FOREIGN KEY ("ModifiedBy")
        REFERENCES public."Account" ("AccountId") MATCH SIMPLE
        ON UPDATE NO ACTION
        ON DELETE NO ACTION
);


INSERT INTO "OrderPrescriptionMaster" ("Name", "Active", "CreatedBy","CreatedDate") VALUES ('Important Advice', true, 1029,'2022-07-27 17:26:41.188772');
INSERT INTO "OrderPrescriptionMaster" ("Name", "Active", "CreatedBy","CreatedDate") VALUES ('Maternal Plan', true, 1029,'2022-07-27 17:26:41.188772');
INSERT INTO "OrderPrescriptionMaster" ("Name", "Active", "CreatedBy","CreatedDate") VALUES ('Fatal Plan', true, 1029,'2022-07-27 17:26:41.188772');
INSERT INTO "OrderPrescriptionMaster" ("Name", "Active", "CreatedBy","CreatedDate")VALUES ('Investigation Template', true, 1029,'2022-07-27 17:26:41.188772');
INSERT INTO "OrderPrescriptionMaster" ("Name", "Active", "CreatedBy","CreatedDate") VALUES ('Referrals', true, 1029,'2022-07-27 17:26:41.188772');
INSERT INTO "OrderPrescriptionMaster" ("Name", "Active", "CreatedBy","CreatedDate") VALUES ('Procedures Templates', true, 1029,'2022-07-27 17:26:41.188772');
INSERT INTO "OrderPrescriptionMaster" ("Name", "Active", "CreatedBy","CreatedDate") VALUES ('Diagnosis Remarks', true, 1029,'2022-07-27 17:26:41.188772');
INSERT INTO "OrderPrescriptionMaster" ("Name", "Active", "CreatedBy","CreatedDate") VALUES ('pregnancy Plan', true, 1029,'2022-07-27 17:26:41.188772');
INSERT INTO "OrderPrescriptionMaster" ("Name", "Active", "CreatedBy","CreatedDate") VALUES ('Pre pregnancy Councelling Details', true,1029,'2022-07-27 17:26:41.188772');



